home *** CD-ROM | disk | FTP | other *** search
/ PC Answers 1995 May / PC Answers CD-ROM 7 (Future Publishing) (May 1995).iso / vbits / code / mee / vbdao / visdata / expname.frm (.txt) < prev    next >
Encoding:
Visual Basic Form  |  1994-10-06  |  1.9 KB  |  71 lines

  1. VERSION 2.00
  2. Begin Form ExpName 
  3.    BackColor       =   &H00C0C0C0&
  4.    BorderStyle     =   3  'Fixed Double
  5.    Caption         =   "Export"
  6.    ClientHeight    =   1335
  7.    ClientLeft      =   2745
  8.    ClientTop       =   3660
  9.    ClientWidth     =   4620
  10.    ControlBox      =   0   'False
  11.    Height          =   1740
  12.    Left            =   2685
  13.    LinkTopic       =   "Form1"
  14.    ScaleHeight     =   1335
  15.    ScaleWidth      =   4620
  16.    Top             =   3315
  17.    Width           =   4740
  18.    Begin CommandButton cCancelBtn 
  19.       Cancel          =   -1  'True
  20.       Caption         =   "Cancel"
  21.       Height          =   375
  22.       Left            =   3480
  23.       TabIndex        =   4
  24.       Top             =   600
  25.       Width           =   1095
  26.    End
  27.    Begin CommandButton cOKBtn 
  28.       Caption         =   "OK"
  29.       Default         =   -1  'True
  30.       Height          =   375
  31.       Left            =   3480
  32.       TabIndex        =   3
  33.       Top             =   120
  34.       Width           =   1095
  35.    End
  36.    Begin TextBox cTable 
  37.       Height          =   285
  38.       Left            =   160
  39.       TabIndex        =   1
  40.       Tag             =   "OLS"
  41.       Top             =   480
  42.       Width           =   2895
  43.    End
  44.    Begin Label Label2 
  45.       BackColor       =   &H00C0C0C0&
  46.       Height          =   255
  47.       Left            =   160
  48.       TabIndex        =   2
  49.       Top             =   840
  50.       Width           =   2895
  51.    End
  52.    Begin Label Label1 
  53.       BackColor       =   &H00C0C0C0&
  54.       Height          =   255
  55.       Left            =   160
  56.       TabIndex        =   0
  57.       Top             =   120
  58.       Width           =   2895
  59.    End
  60. Sub cCancelBtn_Click ()
  61.   gExpTable = NUL_STR
  62.   Unload Me
  63. End Sub
  64. Sub cOKBtn_Click ()
  65.   gExpTable = cTable
  66.   Unload Me
  67. End Sub
  68. Sub Form_Paint ()
  69.   Outlines Me
  70. End Sub
  71.